home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / util / shell / axsh_1_3_demo.lha / InstallDisk.lha / man / du.man < prev    next >
Text File  |  1993-01-15  |  1KB  |  55 lines

  1.  
  2.  
  3. DU            USER COMMANDS             12-Jul-1991
  4.  
  5.  
  6. NAME
  7.     du - display the number of disk blocks used per directory or
  8.     file
  9.  
  10. SYNOPSIS
  11.     du [-s] [-a] [filename ...]
  12.  
  13.  
  14. DESCRIPTION
  15.     du  gives  the  number of disk blocks contained in all files
  16.     and, recursively,directories within each specified directory
  17.     or  file  filename . If  filename  is  missing , the current
  18.     directory is used.
  19.  
  20.     A file which has multiple links to it is only counted once.
  21.  
  22. OPTIONS
  23.     -s    Only display the total for each of the specified
  24.         filenames.
  25.  
  26.     -a    Generate an entry for each file.
  27.  
  28.     Entries are generated only for each directory in the absence
  29.     of options.
  30.  
  31. EXAMPLE
  32.     Here  is  an  example  of using  du. The grand total for the
  33.     directory is the last entry in the display:
  34.           % du
  35.           5    ./jokes
  36.           33   ./squash
  37.           44   ./tech.papers/lpr.document
  38.           217  ./tech.papers/new.manager
  39.           401  ./tech.papers
  40.           144  ./memos
  41.           80   ./letters
  42.           388  ./window
  43.           93   ./messages
  44.           15   ./useful.news
  45.           1211 .
  46.           %
  47.  
  48. SEE ALSO
  49.     info, cd, quota
  50.  
  51. BUGS
  52.     Filename arguments that are not directory names are ignored,
  53.     unless you use -a .
  54.  
  55.